.contact-section {
    background: linear-gradient(135deg, #F47C20, #6A1B9A); /* unified purple-orange gradient */
    padding: 50px 20px;
    color: white;
    margin-top: 100px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: black; /* same highlight style */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.contact-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.contact-info h2 {
    color: black; /* same orange accent */
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: #6A1B9A;
}

/* Form */
.contact-form {
    flex: 2;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid #F47C20; /* orange underline */
    color: white;
    font-size: 1rem;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #ddd;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: #6A1B9A;
}

.btn-submit {
    background: #F47C20; /* unified orange button */
    color: black;
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #fbe4d1; /* peach hover */
    color: black;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
}
